home *** CD-ROM | disk | FTP | other *** search
- -- background: 2785 from stack: in
- -- bmap block id: 2091
- -- flags: 4000
- -- background id: 0
- -- name:
- ----- HyperTalk script -----
- on openBackground
- push recent card
- end openBackground
-
-
- -- part 7 (button)
- -- low flags: 00
- -- high flags: 2004
- -- rect: left=4 top=26 right=56 bottom=36
- -- title width / last selected line: 0
- -- icon id / first selected line: 21700 / 21700
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Home
- ----- HyperTalk script -----
- on mouseUp
- visual effect iris open
- go Home
- end mouseUp
-
-
-
- -- part 9 (field)
- -- low flags: 81
- -- high flags: 0000
- -- rect: left=379 top=152 right=218 bottom=495
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 192
- -- text size: 54
- -- style flags: 0
- -- line height: 72
- -- part name: Answer
- ----- HyperTalk script -----
- on mouseUp
- hide field "Answer"
- end mouseUp
-
-
-
- -- part 16 (field)
- -- low flags: 01
- -- high flags: 0000
- -- rect: left=139 top=152 right=218 bottom=247
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 65535
- -- font id: 192
- -- text size: 54
- -- style flags: 0
- -- line height: 72
- -- part name: First
-
-
- -- part 17 (field)
- -- low flags: 01
- -- high flags: 0000
- -- rect: left=246 top=152 right=218 bottom=280
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 192
- -- text size: 54
- -- style flags: 0
- -- line height: 72
- -- part name: Function
-
-
- -- part 18 (field)
- -- low flags: 01
- -- high flags: 0000
- -- rect: left=279 top=152 right=218 bottom=353
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 192
- -- text size: 54
- -- style flags: 0
- -- line height: 72
- -- part name: Second
-
-
- -- part 24 (button)
- -- low flags: 00
- -- high flags: 8004
- -- rect: left=134 top=303 right=337 bottom=376
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Next
- ----- HyperTalk script -----
- on mouseUp
- -- hide answer
- hide bkgnd field "Answer"
- -- select 2 numbers between 0 and 10
- put random(11) - 1 into temp1
- put random(11) - 1 into temp2
- -- Add or Multiply
- if bkgnd field "Function" = "+" then
- put temp1 into bkgnd field "First"
- put temp2 into bkgnd field "Second"
- put temp1 + temp2 into bkgnd field "Answer"
- else
- if bkgnd field "Function" = "╦ÿ" then
- put temp1 into bkgnd field "First"
- put temp2 into bkgnd field "Second"
- put temp1 * temp2 into bkgnd field "Answer"
- end if
- end if
- -- Subtract
- if bkgnd field "Function" = "-" then
- put temp1 into bkgnd field "First"
- put random(temp1+1)-1 into bkgnd field "Second"
- put bkgnd field "First" - bkgnd field "Second" into bkgnd field "Answer"
- end if
- -- Divide
- if bkgnd field "Function" = "├╖" then
- put random(10) into temp1
- put temp1 into bkgnd field "Second"
- put temp2 into bkgnd field "Answer"
- put temp1 * temp2 into bkgnd field "First"
- end if
- end mouseUp
-
-
-
-
-
- -- part 26 (button)
- -- low flags: 00
- -- high flags: 8004
- -- rect: left=374 top=303 right=337 bottom=497
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Check Answer
- ----- HyperTalk script -----
- on mouseUp
- -- show answer
- show bkgnd field "Answer"
- end mouseUp
-
-
-
- -- part 30 (button)
- -- low flags: 00
- -- high flags: 2004
- -- rect: left=474 top=26 right=56 bottom=507
- -- title width / last selected line: 0
- -- icon id / first selected line: 2478 / 2478
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: What am I?
- ----- HyperTalk script -----
- on mouseUp
- show card field "about 1"
- show card field "about 2"
- end mouseUp
-
-
-
- -- part 31 (field)
- -- low flags: 01
- -- high flags: 0000
- -- rect: left=117 top=68 right=132 bottom=495
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 192
- -- text size: 48
- -- style flags: 512
- -- line height: 64
- -- part name: Operation
-